home *** CD-ROM | disk | FTP | other *** search
- //** Craig Laurent
- #import <appkit/appkit.h>
- #import <eointerface/eointerface.h>
- #import "MessageProtocol.h" //** communication protocols
- #import <remote/NXProxy.h>
- #import <objc/objc-class.h>
-
- @class Converse;
-
- /* Communication - an Object that is used as the Distributed Object server. This object is registered as the server by the main control. */
-
- @interface Communication:NSObject <MessageProtocol>
- {
- Converse *controller;
- }
-
- //** instance methods
- - (Converse*)controller;
- - (void)setController:(Converse*)ctlr;
-
- - init;
- - initWithCtlr:ctlr; //** designated initializer
- - (void)dealloc;
-
- //** other methods are declared in MessageProtocol.h
-
- @end
-